home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / show / egsflick.lha / EGSFlick / Makefile < prev    next >
Encoding:
Makefile  |  1993-11-16  |  195 b   |  16 lines

  1.  
  2. # Makefile for (x/e)flick
  3.  
  4. CC= dcc
  5. LDLIBS= -legs -legsblit -legsintui -legsgfx
  6.  
  7. SRCS = eflick.c read.c
  8. OBJS = eflick.o read.o
  9.  
  10.  
  11. all:: egsflick
  12.  
  13. egsflick: $(OBJS)
  14.     $(CC) -o $@ $(OBJS) $(LDLIBS)
  15.  
  16.